home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Mail / pine3.92 / contrib / flag.cc / mailindx.c.diff next >
Text File  |  1993-09-24  |  611b  |  18 lines

  1. *** mailindx.c.ORIG    Tue Sep 21 03:15:11 1993
  2. --- mailindx.c    Thu Sep 23 22:05:27 1993
  3. ***************
  4. *** 726,731 ****
  5. --- 726,735 ----
  6.       for(addr = envelope->to; addr && to_us == ' '; addr = addr->next)
  7.         if(address_is_us(addr, ps_global))
  8.           to_us = '+';
  9. +     /* holbrook hack 9/23/93 to also mark messages cc'd to us */
  10. +     for(addr = envelope->cc; addr && to_us == ' '; addr = addr->next)
  11. +       if(address_is_us(addr, ps_global))
  12. +         to_us = '+';
  13.   
  14.       sprintf(status, "%c %s %-3ld %s %2d ", to_us, status_string(cache),
  15.           message_number, month_abbrev(d.month), d.day);
  16.  
  17.  
  18.